home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / hsc / examples / simple / source_hsc / Makefile < prev    next >
Makefile  |  1997-06-02  |  752b  |  40 lines

  1. #
  2. # makefile for hsc example project
  3. #
  4.  
  5. #
  6. # NOTE: this makefile is prepared for use under AmigaOS (default) and
  7. #    Unix. To enable the Unix-version, enable the second 
  8. #    definition of the symbol "HSC" and "DESTDIR".
  9. #
  10.  
  11. #
  12. # command used to envoke hsc
  13. #
  14. HSC    = ///hsc
  15. #HSC    = ../../../hsc
  16.  
  17. #
  18. # project destination dir
  19. #
  20. DESTDIR    = /object_html/
  21. #DESTDIR    = ../object_html/
  22.  
  23. #
  24. # options for hsc
  25. #
  26. HSCOPTS   = TO=$(DESTDIR) STATUS=line|verbose
  27.  
  28. all : $(DESTDIR)stupid.html $(DESTDIR)hugo/hugo.html $(DESTDIR)main.html 
  29.  
  30. $(DESTDIR)main.html : main.hsc macro.hsc
  31.      $(HSC) $(HSCOPTS) main.hsc 
  32.  
  33. $(DESTDIR)stupid.html : stupid.hsc macro.hsc
  34.     $(HSC) $(HSCOPTS) stupid.hsc 
  35.  
  36. $(DESTDIR)hugo/hugo.html : hugo/hugo.hsc macro.hsc
  37.     $(HSC) $(HSCOPTS) hugo/hugo.hsc 
  38.  
  39. # EOF
  40.